github.com/operandinc/gqlgen@v0.16.1/codegen/config/testdata/cfg/glob/bar/bar with spaces.graphql (about)

     1  type Query {
     2    todos: [Todo!]!
     3  }
     4  
     5  input NewTodo {
     6    text: String!
     7    userId: String!
     8  }
     9  
    10  type Mutation {
    11    createTodo(input: NewTodo!): Todo!
    12  }